home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
djgpp
/
go32
/
trace.h
< prev
next >
Wrap
C/C++ Source or Header
|
1993-10-17
|
262b
|
18 lines
/* This is file TRACE.H */
/* This is used to assist in tracking down hangs in go32 */
#ifdef TRACE
#undef TRACE
#endif
#ifdef DOTRACE
#define TRACE do_trace(__LINE__, __FILE__)
void do_trace(int, const char *);
#else
#define TRACE
#endif